Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Common Namespace / StructAction<T> Delegate
The type of the parameter of the method that this delegate encapsulates.
The parameter of the method that this delegate encapsulates.

In This Topic
    StructAction<T> Delegate
    In This Topic
    Encapsulates a method that has a single parameter (passed by reference) and does not return a value.
    Syntax
    'Declaration
     
    Public Delegate Sub StructAction(Of T As {New, Struct})( _
       ByRef item As T _
    ) 
    public delegate void StructAction<T>( 
       ref T item
    )
    where T: new(), struct

    Parameters

    item
    The parameter of the method that this delegate encapsulates.

    Type Parameters

    T
    The type of the parameter of the method that this delegate encapsulates.
    See Also